docs.rs failed to build leptos_meta-0.6.15
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
leptos_meta-0.7.0-rc2
# Leptos Meta
Leptos Meta allows you to modify content in a document’s `` from within components
using the [`Leptos`](https://github.com/leptos-rs/leptos) web framework.
Document metadata is updated automatically when running in the browser. For server-side
rendering, after the component tree is rendered to HTML, [`MetaContext::dehydrate`] can generate
HTML that should be injected into the `` of the HTML document being rendered.
```
use leptos::*;
use leptos_meta::*;
#[component]
fn MyApp() -> impl IntoView {
// Provides a [`MetaContext`], if there is not already one provided.
provide_meta_context();
let (name, set_name) = create_signal("Alice".to_string());
view! {